home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------
- //
- // WINGDI.H - GDI procedure declarations, constant definitions
- // and macros.
- //
- // This file contains Windows API type and constant
- // declarations for calls to the Win32 API from Visual
- // dBASE. Function prototypes are in WIN32API.PRG.
- //
- // Visual dBASE Samples Group
- //
- // $Revision: 1.2 $
- //
- // Portions copyright (c) 1991-1995, Microsoft Corp.
- //
- //--------------------------------------------------------------
-
- #ifndef WINGDI_H
- #define WINGDI_H
-
- #include <WINDEF.H>
-
- // Binary raster ops
- #define R2_BLACK 1 // 0
- #define R2_NOTMERGEPEN 2 // DPon
- #define R2_MASKNOTPEN 3 // DPna
- #define R2_NOTCOPYPEN 4 // PN
- #define R2_MASKPENNOT 5 // PDna
- #define R2_NOT 6 // Dn
- #define R2_XORPEN 7 // DPx
- #define R2_NOTMASKPEN 8 // DPan
- #define R2_MASKPEN 9 // DPa
- #define R2_NOTXORPEN 10 // DPxn
- #define R2_NOP 11 // D
- #define R2_MERGENOTPEN 12 // DPno
- #define R2_COPYPEN 13 // P
- #define R2_MERGEPENNOT 14 // PDno
- #define R2_MERGEPEN 15 // DPo
- #define R2_WHITE 16 // 1
- #define R2_LAST 16
-
- // Ternary raster operations
- #define SRCCOPY 0x00CC0020 /* dest = source */
- #define SRCPAINT 0x00EE0086 /* dest = source OR dest */
- #define SRCAND 0x008800C6 /* dest = source AND dest */
- #define SRCINVERT 0x00660046 /* dest = source XOR dest */
- #define SRCERASE 0x00440328 /* dest = source AND (NOT dest ) */
- #define NOTSRCCOPY 0x00330008 /* dest = (NOT source) */
- #define NOTSRCERASE 0x001100A6 /* dest = (NOT src) AND (NOT dest) */
- #define MERGECOPY 0x00C000CA /* dest = (source AND pattern) */
- #define MERGEPAINT 0x00BB0226 /* dest = (NOT source) OR dest */
- #define PATCOPY 0x00F00021 /* dest = pattern */
- #define PATPAINT 0x00FB0A09 /* dest = DPSnoo */
- #define PATINVERT 0x005A0049 /* dest = pattern XOR dest */
- #define DSTINVERT 0x00550009 /* dest = (NOT dest) */
- #define BLACKNESS 0x00000042 /* dest = BLACK */
- #define WHITENESS 0x00FF0062 /* dest = WHITE */
-
- // Quaternary raster codes
- #define MAKEROP4(fore,back) (bitor(bitand( bitlshift(back,8), 0xFF000000), (fore)))
-
- #define GDI_ERROR (0xFFFFFFFF)
- #define HGDI_ERROR (0xFFFFFFFF)
-
- // Region Flags
- #define ERROR 0
- #define NULLREGION 1
- #define SIMPLEREGION 2
- #define COMPLEXREGION 3
- #define RGN_ERROR ERROR
-
- // CombineRgn() Styles
- #define RGN_AND 1
- #define RGN_OR 2
- #define RGN_XOR 3
- #define RGN_DIFF 4
- #define RGN_COPY 5
- #define RGN_MIN RGN_AND
- #define RGN_MAX RGN_COPY
-
- // StretchBlt() Modes
- #define BLACKONWHITE 1
- #define WHITEONBLACK 2
- #define COLORONCOLOR 3
- #define HALFTONE 4
- #define MAXSTRETCHBLTMODE 4
-
- // New StretchBlt() Modes
- #define STRETCH_ANDSCANS BLACKONWHITE
- #define STRETCH_ORSCANS WHITEONBLACK
- #define STRETCH_DELETESCANS COLORONCOLOR
- #define STRETCH_HALFTONE HALFTONE
-
- // PolyFill() Modes
- #define ALTERNATE 1
- #define WINDING 2
- #define POLYFILL_LAST 2
-
- // Text Alignment Options
- #define TA_NOUPDATECP 0
- #define TA_UPDATECP 1
-
- #define TA_LEFT 0
- #define TA_RIGHT 2
- #define TA_CENTER 6
-
- #define TA_TOP 0
- #define TA_BOTTOM 8
- #define TA_BASELINE 24
- #define TA_RTLREADING 256
- #define TA_MASK (TA_BASELINE+TA_CENTER+TA_UPDATECP+TA_RTLREADING)
-
- #define VTA_BASELINE TA_BASELINE
- #define VTA_LEFT TA_BOTTOM
- #define VTA_RIGHT TA_TOP
- #define VTA_CENTER TA_CENTER
- #define VTA_BOTTOM TA_RIGHT
- #define VTA_TOP TA_LEFT
-
- #define ETO_OPAQUE 0x0002
- #define ETO_CLIPPED 0x0004
- #define ETO_GLYPH_INDEX 0x0010
- #define ETO_RTLREADING 0x0080
-
- #define ASPECT_FILTERING 0x0001
-
- // Bounds Accumulation APIs
-
- #define DCB_RESET 0x0001
- #define DCB_ACCUMULATE 0x0002
- #define DCB_DIRTY DCB_ACCUMULATE
- #define DCB_SET (bitor(DCB_RESET, DCB_ACCUMULATE))
- #define DCB_ENABLE 0x0004
- #define DCB_DISABLE 0x0008
-
- // Metafile Functions
- #define META_SETBKCOLOR 0x0201
- #define META_SETBKMODE 0x0102
- #define META_SETMAPMODE 0x0103
- #define META_SETROP2 0x0104
- #define META_SETRELABS 0x0105
- #define META_SETPOLYFILLMODE 0x0106
- #define META_SETSTRETCHBLTMODE 0x0107
- #define META_SETTEXTCHAREXTRA 0x0108
- #define META_SETTEXTCOLOR 0x0209
- #define META_SETTEXTJUSTIFICATION 0x020A
- #define META_SETWINDOWORG 0x020B
- #define META_SETWINDOWEXT 0x020C
- #define META_SETVIEWPORTORG 0x020D
- #define META_SETVIEWPORTEXT 0x020E
- #define META_OFFSETWINDOWORG 0x020F
- #define META_SCALEWINDOWEXT 0x0410
- #define META_OFFSETVIEWPORTORG 0x0211
- #define META_SCALEVIEWPORTEXT 0x0412
- #define META_LINETO 0x0213
- #define META_MOVETO 0x0214
- #define META_EXCLUDECLIPRECT 0x0415
- #define META_INTERSECTCLIPRECT 0x0416
- #define META_ARC 0x0817
- #define META_ELLIPSE 0x0418
- #define META_FLOODFILL 0x0419
- #define META_PIE 0x081A
- #define META_RECTANGLE 0x041B
- #define META_ROUNDRECT 0x061C
- #define META_PATBLT 0x061D
- #define META_SAVEDC 0x001E
- #define META_SETPIXEL 0x041F
- #define META_OFFSETCLIPRGN 0x0220
- #define META_TEXTOUT 0x0521
- #define META_BITBLT 0x0922
- #define META_STRETCHBLT 0x0B23
- #define META_POLYGON 0x0324
- #define META_POLYLINE 0x0325
- #define META_ESCAPE 0x0626
- #define META_RESTOREDC 0x0127
- #define META_FILLREGION 0x0228
- #define META_FRAMEREGION 0x0429
- #define META_INVERTREGION 0x012A
- #define META_PAINTREGION 0x012B
- #define META_SELECTCLIPREGION 0x012C
- #define META_SELECTOBJECT 0x012D
- #define META_SETTEXTALIGN 0x012E
- #define META_CHORD 0x0830
- #define META_SETMAPPERFLAGS 0x0231
- #define META_EXTTEXTOUT 0x0a32
- #define META_SETDIBTODEV 0x0d33
- #define META_SELECTPALETTE 0x0234
- #define META_REALIZEPALETTE 0x0035
- #define META_ANIMATEPALETTE 0x0436
- #define META_SETPALENTRIES 0x0037
- #define META_POLYPOLYGON 0x0538
- #define META_RESIZEPALETTE 0x0139
- #define META_DIBBITBLT 0x0940
- #define META_DIBSTRETCHBLT 0x0b41
- #define META_DIBCREATEPATTERNBRUSH 0x0142
- #define META_STRETCHDIB 0x0f43
- #define META_EXTFLOODFILL 0x0548
- #define META_DELETEOBJECT 0x01f0
- #define META_CREATEPALETTE 0x00f7
- #define META_CREATEPATTERNBRUSH 0x01F9
- #define META_CREATEPENINDIRECT 0x02FA
- #define META_CREATEFONTINDIRECT 0x02FB
- #define META_CREATEBRUSHINDIRECT 0x02FC
- #define META_CREATEREGION 0x06FF
-
- // GDI Escapes
- #define NEWFRAME 1
- #define ABORTDOC 2
- #define NEXTBAND 3
- #define SETCOLORTABLE 4
- #define GETCOLORTABLE 5
- #define FLUSHOUTPUT 6
- #define DRAFTMODE 7
- #define QUERYESCSUPPORT 8
- #define SETABORTPROC 9
- #define STARTDOC 10
- #define ENDDOC 11
- #define GETPHYSPAGESIZE 12
- #define GETPRINTINGOFFSET 13
- #define GETSCALINGFACTOR 14
- #define MFCOMMENT 15
- #define GETPENWIDTH 16
- #define SETCOPYCOUNT 17
- #define SELECTPAPERSOURCE 18
- #define DEVICEDATA 19
- #define PASSTHROUGH 19
- #define GETTECHNOLGY 20
- #define GETTECHNOLOGY 20
- #define SETLINECAP 21
- #define SETLINEJOIN 22
- #define SETMITERLIMIT 23
- #define BANDINFO 24
- #define DRAWPATTERNRECT 25
- #define GETVECTORPENSIZE 26
- #define GETVECTORBRUSHSIZE 27
- #define ENABLEDUPLEX 28
- #define GETSETPAPERBINS 29
- #define GETSETPRINTORIENT 30
- #define ENUMPAPERBINS 31
- #define SETDIBSCALING 32
- #define EPSPRINTING 33
- #define ENUMPAPERMETRICS 34
- #define GETSETPAPERMETRICS 35
- #define POSTSCRIPT_DATA 37
- #define POSTSCRIPT_IGNORE 38
- #define MOUSETRAILS 39
- #define GETDEVICEUNITS 42
-
- #define GETEXTENDEDTEXTMETRICS 256
- #define GETEXTENTTABLE 257
- #define GETPAIRKERNTABLE 258
- #define GETTRACKKERNTABLE 259
- #define EXTTEXTOUT 512
- #define GETFACENAME 513
- #define DOWNLOADFACE 514
- #define ENABLERELATIVEWIDTHS 768
- #define ENABLEPAIRKERNING 769
- #define SETKERNTRACK 770
- #define SETALLJUSTVALUES 771
- #define SETCHARSET 772
-
- #define STRETCHBLT 2048
- #define GETSETSCREENPARAMS 3072
- #define QUERYDIBSUPPORT 3073
- #define BEGIN_PATH 4096
- #define CLIP_TO_PATH 4097
- #define END_PATH 4098
- #define EXT_DEVICE_CAPS 4099
- #define RESTORE_CTM 4100
- #define SAVE_CTM 4101
- #define SET_ARC_DIRECTION 4102
- #define SET_BACKGROUND_COLOR 4103
- #define SET_POLY_MODE 4104
- #define SET_SCREEN_ANGLE 4105
- #define SET_SPREAD 4106
- #define TRANSFORM_CTM 4107
- #define SET_CLIP_BOX 4108
- #define SET_BOUNDS 4109
- #define SET_MIRROR_MODE 4110
- #define OPENCHANNEL 4110
- #define DOWNLOADHEADER 4111
- #define CLOSECHANNEL 4112
- #define POSTSCRIPT_PASSTHROUGH 4115
- #define ENCAPSULATED_POSTSCRIPT 4116
-
- // Flag returned from QUERYDIBSUPPORT
- #define QDI_SETDIBITS 1
- #define QDI_GETDIBITS 2
- #define QDI_DIBTOSCREEN 4
- #define QDI_STRETCHDIB 8
-
- // Spooler Error Codes
- #define SP_NOTREPORTED 0x4000
- #define SP_ERROR (-1)
- #define SP_APPABORT (-2)
- #define SP_USERABORT (-3)
- #define SP_OUTOFDISK (-4)
- #define SP_OUTOFMEMORY (-5)
-
- #define PR_JOBSTATUS 0x0000
-
- // Object Definitions for EnumObjects()
- #define OBJ_PEN 1
- #define OBJ_BRUSH 2
- #define OBJ_DC 3
- #define OBJ_METADC 4
- #define OBJ_PAL 5
- #define OBJ_FONT 6
- #define OBJ_BITMAP 7
- #define OBJ_REGION 8
- #define OBJ_METAFILE 9
- #define OBJ_MEMDC 10
- #define OBJ_EXTPEN 11
- #define OBJ_ENHMETADC 12
- #define OBJ_ENHMETAFILE 13
-
- // xform stuff
- #define MWT_IDENTITY 1
- #define MWT_LEFTMULTIPLY 2
- #define MWT_RIGHTMULTIPLY 3
-
- #define MWT_MIN MWT_IDENTITY
- #define MWT_MAX MWT_RIGHTMULTIPLY
-
- #define _XFORM_
-
-
- // Image Color Matching color definitions
-
- #define LCSCSTYPE LONG
- #define LCS_CALIBRATED_RGB 0x00000000
- #define LCS_DEVICE_RGB 0x00000001
- #define LCS_DEVICE_CMYK 0x00000002
-
- #define LCSGAMUTMATCH LONG
- #define LCS_GM_BUSINESS 0x00000001
- #define LCS_GM_GRAPHICS 0x00000002
- #define LCS_GM_IMAGES 0x00000004
-
- // ICM Defines for results from CheckColorInGamut()
- #define CM_OUT_OF_GAMUT 255
- #define CM_IN_GAMUT 0
-
- // Macros to retrieve CMYK values from a COLORREF
- #define GetCValue(cmyk) (LOBYTE(cmyk))
- #define GetMValue(cmyk) (LOBYTE(bitrshift(cmyk, 8)))
- #define GetYValue(cmyk) (LOBYTE(bitrshift(cmyk, 16)))
- #define GetKValue(cmyk) (LOBYTE(bitrshift(cmyk, 24)))
-
- #define CMYK(c,m,y,k) (bitor(bitor(bitor(LOBYTE(c),bitlshift(LOBYTE(m),8)),bitlshift(LOBYTE(y),16)),bitlshift(LOBYTE(k),24)))
-
- #define FXPT16DOT16 LONG
- #define LPFXPT16DOT16 LPLONG
- #define FXPT2DOT30 LONG
- #define LPFXPT2DOT30 LPLONG
-
- // constants for the biCompression field
- #define BI_RGB 0
- #define BI_RLE8 1
- #define BI_RLE4 2
- #define BI_BITFIELDS 3
-
- #define TCI_SRCCHARSET 1
- #define TCI_SRCCODEPAGE 2
- #define TCI_SRCFONTSIG 3
-
- // tmPitchAndFamily flags
- #define TMPF_FIXED_PITCH 0x01
- #define TMPF_VECTOR 0x02
- #define TMPF_DEVICE 0x08
- #define TMPF_TRUETYPE 0x04
-
- // ntmFlags field flags
- #define NTM_REGULAR 0x00000040
- #define NTM_BOLD 0x00000020
- #define NTM_ITALIC 0x00000001
-
- // Logical Font
- #define LF_FACESIZE 32
- #define LF_FULLFACESIZE 64
-
- #define OUT_DEFAULT_PRECIS 0
- #define OUT_STRING_PRECIS 1
- #define OUT_CHARACTER_PRECIS 2
- #define OUT_STROKE_PRECIS 3
- #define OUT_TT_PRECIS 4
- #define OUT_DEVICE_PRECIS 5
- #define OUT_RASTER_PRECIS 6
- #define OUT_TT_ONLY_PRECIS 7
- #define OUT_OUTLINE_PRECIS 8
-
- #define CLIP_DEFAULT_PRECIS 0
- #define CLIP_CHARACTER_PRECIS 1
- #define CLIP_STROKE_PRECIS 2
- #define CLIP_MASK 0xf
- #define CLIP_LH_ANGLES (bitlshift(1,4))
- #define CLIP_TT_ALWAYS (bitlshift(2,4))
- #define CLIP_EMBEDDED (bitlshift(8,4))
-
- #define DEFAULT_QUALITY 0
- #define DRAFT_QUALITY 1
- #define PROOF_QUALITY 2
- #define NONANTIALIASED_QUALITY 3
- #define ANTIALIASED_QUALITY 4
-
- #define DEFAULT_PITCH 0
- #define FIXED_PITCH 1
- #define VARIABLE_PITCH 2
- #define MONO_FONT 8
-
- #define ANSI_CHARSET 0
- #define DEFAULT_CHARSET 1
- #define SYMBOL_CHARSET 2
- #define SHIFTJIS_CHARSET 128
- #define HANGEUL_CHARSET 129
- #define GB2312_CHARSET 134
- #define CHINESEBIG5_CHARSET 136
- #define OEM_CHARSET 255
- #define JOHAB_CHARSET 130
- #define HEBREW_CHARSET 177
- #define ARABIC_CHARSET 178
- #define GREEK_CHARSET 161
- #define TURKISH_CHARSET 162
- #define THAI_CHARSET 222
- #define EASTEUROPE_CHARSET 238
- #define RUSSIAN_CHARSET 204
-
- #define MAC_CHARSET 77
- #define BALTIC_CHARSET 186
-
- #define FS_LATIN1 0x00000001
- #define FS_LATIN2 0x00000002
- #define FS_CYRILLIC 0x00000004
- #define FS_GREEK 0x00000008
- #define FS_TURKISH 0x00000010
- #define FS_HEBREW 0x00000020
- #define FS_ARABIC 0x00000040
- #define FS_BALTIC 0x00000080
- #define FS_THAI 0x00010000
- #define FS_JISJAPAN 0x00020000
- #define FS_CHINESESIMP 0x00040000
- #define FS_WANSUNG 0x00080000
- #define FS_CHINESETRAD 0x00100000
- #define FS_JOHAB 0x00200000
- #define FS_SYMBOL 0x80000000
-
- // Font Families
- #define FF_DONTCARE (bitlshift(0,4)) /* Don't care or don't know. */
- #define FF_ROMAN (bitlshift(1,4)) /* Variable stroke width, serifed. */
- // Times Roman, Century Schoolbook, etc.
- #define FF_SWISS (bitlshift(2,4)) /* Variable stroke width, sans-serifed. */
- // Helvetica, Swiss, etc.
- #define FF_MODERN (bitlshift(3,4)) /* Constant stroke width, serifed or sans-serifed. */
- // Pica, Elite, Courier, etc.
- #define FF_SCRIPT (bitlshift(4,4)) /* Cursive, etc. */
- #define FF_DECORATIVE (bitlshift(5,4)) /* Old English, etc. */
-
- // Font Weights
- #define FW_DONTCARE 0
- #define FW_THIN 100
- #define FW_EXTRALIGHT 200
- #define FW_LIGHT 300
- #define FW_NORMAL 400
- #define FW_MEDIUM 500
- #define FW_SEMIBOLD 600
- #define FW_BOLD 700
- #define FW_EXTRABOLD 800
- #define FW_HEAVY 900
-
- #define FW_ULTRALIGHT FW_EXTRALIGHT
- #define FW_REGULAR FW_NORMAL
- #define FW_DEMIBOLD FW_SEMIBOLD
- #define FW_ULTRABOLD FW_EXTRABOLD
- #define FW_BLACK FW_HEAVY
-
- #define PANOSE_COUNT 10
- #define PAN_FAMILYTYPE_INDEX 0
- #define PAN_SERIFSTYLE_INDEX 1
- #define PAN_WEIGHT_INDEX 2
- #define PAN_PROPORTION_INDEX 3
- #define PAN_CONTRAST_INDEX 4
- #define PAN_STROKEVARIATION_INDEX 5
- #define PAN_ARMSTYLE_INDEX 6
- #define PAN_LETTERFORM_INDEX 7
- #define PAN_MIDLINE_INDEX 8
- #define PAN_XHEIGHT_INDEX 9
-
- #define PAN_CULTURE_LATIN 0
-
- #define PAN_ANY 0 /* Any */
- #define PAN_NO_FIT 1 /* No Fit */
-
- #define PAN_FAMILY_TEXT_DISPLAY 2 /* Text and Display */
- #define PAN_FAMILY_SCRIPT 3 /* Script */
- #define PAN_FAMILY_DECORATIVE 4 /* Decorative */
- #define PAN_FAMILY_PICTORIAL 5 /* Pictorial */
-
- #define PAN_SERIF_COVE 2 /* Cove */
- #define PAN_SERIF_OBTUSE_COVE 3 /* Obtuse Cove */
- #define PAN_SERIF_SQUARE_COVE 4 /* Square Cove */
- #define PAN_SERIF_OBTUSE_SQUARE_COVE 5 /* Obtuse Square Cove */
- #define PAN_SERIF_SQUARE 6 /* Square */
- #define PAN_SERIF_THIN 7 /* Thin */
- #define PAN_SERIF_BONE 8 /* Bone */
- #define PAN_SERIF_EXAGGERATED 9 /* Exaggerated */
- #define PAN_SERIF_TRIANGLE 10 /* Triangle */
- #define PAN_SERIF_NORMAL_SANS 11 /* Normal Sans */
- #define PAN_SERIF_OBTUSE_SANS 12 /* Obtuse Sans */
- #define PAN_SERIF_PERP_SANS 13 /* Prep Sans */
- #define PAN_SERIF_FLARED 14 /* Flared */
- #define PAN_SERIF_ROUNDED 15 /* Rounded */
-
- #define PAN_WEIGHT_VERY_LIGHT 2 /* Very Light */
- #define PAN_WEIGHT_LIGHT 3 /* Light */
- #define PAN_WEIGHT_THIN 4 /* Thin */
- #define PAN_WEIGHT_BOOK 5 /* Book */
- #define PAN_WEIGHT_MEDIUM 6 /* Medium */
- #define PAN_WEIGHT_DEMI 7 /* Demi */
- #define PAN_WEIGHT_BOLD 8 /* Bold */
- #define PAN_WEIGHT_HEAVY 9 /* Heavy */
- #define PAN_WEIGHT_BLACK 10 /* Black */
- #define PAN_WEIGHT_NORD 11 /* Nord */
-
- #define PAN_PROP_OLD_STYLE 2 /* Old Style */
- #define PAN_PROP_MODERN 3 /* Modern */
- #define PAN_PROP_EVEN_WIDTH 4 /* Even Width */
- #define PAN_PROP_EXPANDED 5 /* Expanded */
- #define PAN_PROP_CONDENSED 6 /* Condensed */
- #define PAN_PROP_VERY_EXPANDED 7 /* Very Expanded */
- #define PAN_PROP_VERY_CONDENSED 8 /* Very Condensed */
- #define PAN_PROP_MONOSPACED 9 /* Monospaced */
-
- #define PAN_CONTRAST_NONE 2 /* None */
- #define PAN_CONTRAST_VERY_LOW 3 /* Very Low */
- #define PAN_CONTRAST_LOW 4 /* Low */
- #define PAN_CONTRAST_MEDIUM_LOW 5 /* Medium Low */
- #define PAN_CONTRAST_MEDIUM 6 /* Medium */
- #define PAN_CONTRAST_MEDIUM_HIGH 7 /* Mediim High */
- #define PAN_CONTRAST_HIGH 8 /* High */
- #define PAN_CONTRAST_VERY_HIGH 9 /* Very High */
-
- #define PAN_STROKE_GRADUAL_DIAG 2 /* Gradual/Diagonal */
- #define PAN_STROKE_GRADUAL_TRAN 3 /* Gradual/Transitional */
- #define PAN_STROKE_GRADUAL_VERT 4 /* Gradual/Vertical */
- #define PAN_STROKE_GRADUAL_HORZ 5 /* Gradual/Horizontal */
- #define PAN_STROKE_RAPID_VERT 6 /* Rapid/Vertical */
- #define PAN_STROKE_RAPID_HORZ 7 /* Rapid/Horizontal */
- #define PAN_STROKE_INSTANT_VERT 8 /* Instant/Vertical */
-
- #define PAN_STRAIGHT_ARMS_HORZ 2 /* Straight Arms/Horizontal */
- #define PAN_STRAIGHT_ARMS_WEDGE 3 /* Straight Arms/Wedge */
- #define PAN_STRAIGHT_ARMS_VERT 4 /* Straight Arms/Vertical */
- #define PAN_STRAIGHT_ARMS_SINGLE_SERIF 5 /* Straight Arms/Single-Serif */
- #define PAN_STRAIGHT_ARMS_DOUBLE_SERIF 6 /* Straight Arms/Double-Serif */
- #define PAN_BENT_ARMS_HORZ 7 /* Non-Straight Arms/Horizontal */
- #define PAN_BENT_ARMS_WEDGE 8 /* Non-Straight Arms/Wedge */
- #define PAN_BENT_ARMS_VERT 9 /* Non-Straight Arms/Vertical */
- #define PAN_BENT_ARMS_SINGLE_SERIF 10 /* Non-Straight Arms/Single-Serif */
- #define PAN_BENT_ARMS_DOUBLE_SERIF 11 /* Non-Straight Arms/Double-Serif */
-
- #define PAN_LETT_NORMAL_CONTACT 2 /* Normal/Contact */
- #define PAN_LETT_NORMAL_WEIGHTED 3 /* Normal/Weighted */
- #define PAN_LETT_NORMAL_BOXED 4 /* Normal/Boxed */
- #define PAN_LETT_NORMAL_FLATTENED 5 /* Normal/Flattened */
- #define PAN_LETT_NORMAL_ROUNDED 6 /* Normal/Rounded */
- #define PAN_LETT_NORMAL_OFF_CENTER 7 /* Normal/Off Center */
- #define PAN_LETT_NORMAL_SQUARE 8 /* Normal/Square */
- #define PAN_LETT_OBLIQUE_CONTACT 9 /* Oblique/Contact */
- #define PAN_LETT_OBLIQUE_WEIGHTED 10 /* Oblique/Weighted */
- #define PAN_LETT_OBLIQUE_BOXED 11 /* Oblique/Boxed */
- #define PAN_LETT_OBLIQUE_FLATTENED 12 /* Oblique/Flattened */
- #define PAN_LETT_OBLIQUE_ROUNDED 13 /* Oblique/Rounded */
- #define PAN_LETT_OBLIQUE_OFF_CENTER 14 /* Oblique/Off Center */
- #define PAN_LETT_OBLIQUE_SQUARE 15 /* Oblique/Square */
-
- #define PAN_MIDLINE_STANDARD_TRIMMED 2 /* Standard/Trimmed */
- #define PAN_MIDLINE_STANDARD_POINTED 3 /* Standard/Pointed */
- #define PAN_MIDLINE_STANDARD_SERIFED 4 /* Standard/Serifed */
- #define PAN_MIDLINE_HIGH_TRIMMED 5 /* High/Trimmed */
- #define PAN_MIDLINE_HIGH_POINTED 6 /* High/Pointed */
- #define PAN_MIDLINE_HIGH_SERIFED 7 /* High/Serifed */
- #define PAN_MIDLINE_CONSTANT_TRIMMED 8 /* Constant/Trimmed */
- #define PAN_MIDLINE_CONSTANT_POINTED 9 /* Constant/Pointed */
- #define PAN_MIDLINE_CONSTANT_SERIFED 10 /* Constant/Serifed */
- #define PAN_MIDLINE_LOW_TRIMMED 11 /* Low/Trimmed */
- #define PAN_MIDLINE_LOW_POINTED 12 /* Low/Pointed */
- #define PAN_MIDLINE_LOW_SERIFED 13 /* Low/Serifed */
-
- #define PAN_XHEIGHT_CONSTANT_SMALL 2 /* Constant/Small */
- #define PAN_XHEIGHT_CONSTANT_STD 3 /* Constant/Standard */
- #define PAN_XHEIGHT_CONSTANT_LARGE 4 /* Constant/Large */
- #define PAN_XHEIGHT_DUCKING_SMALL 5 /* Ducking/Small */
- #define PAN_XHEIGHT_DUCKING_STD 6 /* Ducking/Standard */
- #define PAN_XHEIGHT_DUCKING_LARGE 7 /* Ducking/Large */
-
- // The extended logical font
- #define ELF_VENDOR_SIZE 4
-
- #define ELF_VERSION 0
- #define ELF_CULTURE_LATIN 0
-
- // EnumFonts Masks
- #define RASTER_FONTTYPE 0x0001
- #define DEVICE_FONTTYPE 0x002
- #define TRUETYPE_FONTTYPE 0x004
-
- #define RGB(r,g,b) (bitor(bitor(LOBYTE(r),bitlshift(LOBYTE(g),8)),bitlshift(LOBYTE(b),16)))
- #define PALETTERGB(r,g,b) (bitor(0x02000000, RGB(r,g,b)))
- #define PALETTEINDEX(i) (bitor(0x01000000, (i)))
-
- // palette entry flags
-
- #define PC_RESERVED 0x01 /* palette index used for animation */
- #define PC_EXPLICIT 0x02 /* palette index is explicit to device */
- #define PC_NOCOLLAPSE 0x04 /* do not match color to system palette */
-
- #define GetRValue(rgb) (LOBYTE(rgb))
- #define GetGValue(rgb) (LOBYTE(bitrshift(rgb, 8)))
- #define GetBValue(rgb) (LOBYTE(bitrshift(rgb, 16)))
-
- // Background Modes
- #define TRANSPARENT 1
- #define OPAQUE 2
- #define BKMODE_LAST 2
-
- // Graphics Modes
-
- #define GM_COMPATIBLE 1
- #define GM_ADVANCED 2
- #define GM_LAST 2
-
- // PolyDraw and GetPath point types
- #define PT_CLOSEFIGURE 0x01
- #define PT_LINETO 0x02
- #define PT_BEZIERTO 0x04
- #define PT_MOVETO 0x06
-
- // Mapping Modes
- #define MM_TEXT 1
- #define MM_LOMETRIC 2
- #define MM_HIMETRIC 3
- #define MM_LOENGLISH 4
- #define MM_HIENGLISH 5
- #define MM_TWIPS 6
- #define MM_ISOTROPIC 7
- #define MM_ANISOTROPIC 8
-
- // Min and Max Mapping Mode values
- #define MM_MIN MM_TEXT
- #define MM_MAX MM_ANISOTROPIC
- #define MM_MAX_FIXEDSCALE MM_TWIPS
-
- // Coordinate Modes
- #define ABSOLUTE 1
- #define RELATIVE 2
-
- // Stock Logical Objects
- #define WHITE_BRUSH 0
- #define LTGRAY_BRUSH 1
- #define GRAY_BRUSH 2
- #define DKGRAY_BRUSH 3
- #define BLACK_BRUSH 4
- #define NULL_BRUSH 5
- #define HOLLOW_BRUSH NULL_BRUSH
- #define WHITE_PEN 6
- #define BLACK_PEN 7
- #define NULL_PEN 8
- #define OEM_FIXED_FONT 10
- #define ANSI_FIXED_FONT 11
- #define ANSI_VAR_FONT 12
- #define SYSTEM_FONT 13
- #define DEVICE_DEFAULT_FONT 14
- #define DEFAULT_PALETTE 15
- #define SYSTEM_FIXED_FONT 16
- #define DEFAULT_GUI_FONT 17
- #define STOCK_LAST 17
-
- #define CLR_INVALID 0xFFFFFFFF
-
- // Brush Styles
- #define BS_SOLID 0
- #define BS_NULL 1
- #define BS_HOLLOW BS_NULL
- #define BS_HATCHED 2
- #define BS_PATTERN 3
- #define BS_INDEXED 4
- #define BS_DIBPATTERN 5
- #define BS_DIBPATTERNPT 6
- #define BS_PATTERN8X8 7
- #define BS_DIBPATTERN8X8 8
-
- // Hatch Styles
- #define HS_HORIZONTAL 0 /* ----- */
- #define HS_VERTICAL 1 /* ||||| */
- #define HS_FDIAGONAL 2 /* \\\\\ */
- #define HS_BDIAGONAL 3 /* ///// */
- #define HS_CROSS 4 /* +++++ */
- #define HS_DIAGCROSS 5 /* xxxxx */
-
- // Pen Styles
- #define PS_SOLID 0
- #define PS_DASH 1 /* ------- */
- #define PS_DOT 2 /* ....... */
- #define PS_DASHDOT 3 /* _._._._ */
- #define PS_DASHDOTDOT 4 /* _.._.._ */
- #define PS_NULL 5
- #define PS_INSIDEFRAME 6
- #define PS_USERSTYLE 7
- #define PS_ALTERNATE 8
- #define PS_STYLE_MASK 0x0000000F
-
- #define PS_ENDCAP_ROUND 0x00000000
- #define PS_ENDCAP_SQUARE 0x00000100
- #define PS_ENDCAP_FLAT 0x00000200
- #define PS_ENDCAP_MASK 0x00000F00
-
- #define PS_JOIN_ROUND 0x00000000
- #define PS_JOIN_BEVEL 0x00001000
- #define PS_JOIN_MITER 0x00002000
- #define PS_JOIN_MASK 0x0000F000
-
- #define PS_COSMETIC 0x00000000
- #define PS_GEOMETRIC 0x00010000
- #define PS_TYPE_MASK 0x000F0000
-
- #define AD_COUNTERCLOCKWISE 1
- #define AD_CLOCKWISE 2
-
- // Device Parameters for GetDeviceCaps()
- #define DRIVERVERSION 0 /* Device driver version */
- #define TECHNOLOGY 2 /* Device classification */
- #define HORZSIZE 4 /* Horizontal size in millimeters */
- #define VERTSIZE 6 /* Vertical size in millimeters */
- #define HORZRES 8 /* Horizontal width in pixels */
- #define VERTRES 10 /* Vertical height in pixels */
- #define BITSPIXEL 12 /* Number of bits per pixel */
- #define PLANES 14 /* Number of planes */
- #define NUMBRUSHES 16 /* Number of brushes the device has */
- #define NUMPENS 18 /* Number of pens the device has */
- #define NUMMARKERS 20 /* Number of markers the device has */
- #define NUMFONTS 22 /* Number of fonts the device has */
- #define NUMCOLORS 24 /* Number of colors the device supports */
- #define PDEVICESIZE 26 /* Size required for device descriptor */
- #define CURVECAPS 28 /* Curve capabilities */
- #define LINECAPS 30 /* Line capabilities */
- #define POLYGONALCAPS 32 /* Polygonal capabilities */
- #define TEXTCAPS 34 /* Text capabilities */
- #define CLIPCAPS 36 /* Clipping capabilities */
- #define RASTERCAPS 38 /* Bitblt capabilities */
- #define ASPECTX 40 /* Length of the X leg */
- #define ASPECTY 42 /* Length of the Y leg */
- #define ASPECTXY 44 /* Length of the hypotenuse */
-
- #define LOGPIXELSX 88 /* Logical pixels/inch in X */
- #define LOGPIXELSY 90 /* Logical pixels/inch in Y */
-
- #define SIZEPALETTE 104 /* Number of entries in physical palette */
- #define NUMRESERVED 106 /* Number of reserved entries in palette */
- #define COLORRES 108 /* Actual color resolution */
-
-
- // Printing related DeviceCaps. These replace the appropriate Escapes
-
- #define PHYSICALWIDTH 110 /* Physical Width in device units */
- #define PHYSICALHEIGHT 111 /* Physical Height in device units */
- #define PHYSICALOFFSETX 112 /* Physical Printable Area x margin */
- #define PHYSICALOFFSETY 113 /* Physical Printable Area y margin */
- #define SCALINGFACTORX 114 /* Scaling factor x */
- #define SCALINGFACTORY 115 /* Scaling factor y */
-
- // Display driver specific
-
- #define VREFRESH 116 /* Current vertical refresh rate of the */
- // display device (for displays only) in Hz
- #define DESKTOPVERTRES 117 /* Horizontal width of entire desktop in */
- // pixels
- #define DESKTOPHORZRES 118 /* Vertical height of entire desktop in */
- // pixels
- #define BLTALIGNMENT 119 /* Preferred blt alignment */
-
- #ifndef NOGDICAPMASKS
-
- // Device Capability Masks:
-
- // Device Technologies
- #define DT_PLOTTER 0 /* Vector plotter */
- #define DT_RASDISPLAY 1 /* Raster display */
- #define DT_RASPRINTER 2 /* Raster printer */
- #define DT_RASCAMERA 3 /* Raster camera */
- #define DT_CHARSTREAM 4 /* Character-stream, PLP */
- #define DT_METAFILE 5 /* Metafile, VDM */
- #define DT_DISPFILE 6 /* Display-file */
-
- // Curve Capabilities
- #define CC_NONE 0 /* Curves not supported */
- #define CC_CIRCLES 1 /* Can do circles */
- #define CC_PIE 2 /* Can do pie wedges */
- #define CC_CHORD 4 /* Can do chord arcs */
- #define CC_ELLIPSES 8 /* Can do ellipese */
- #define CC_WIDE 16 /* Can do wide lines */
- #define CC_STYLED 32 /* Can do styled lines */
- #define CC_WIDESTYLED 64 /* Can do wide styled lines */
- #define CC_INTERIORS 128 /* Can do interiors */
- #define CC_ROUNDRECT 256 /* */
-
- // Line Capabilities
- #define LC_NONE 0 /* Lines not supported */
- #define LC_POLYLINE 2 /* Can do polylines */
- #define LC_MARKER 4 /* Can do markers */
- #define LC_POLYMARKER 8 /* Can do polymarkers */
- #define LC_WIDE 16 /* Can do wide lines */
- #define LC_STYLED 32 /* Can do styled lines */
- #define LC_WIDESTYLED 64 /* Can do wide styled lines */
- #define LC_INTERIORS 128 /* Can do interiors */
-
- // Polygonal Capabilities
- #define PC_NONE 0 /* Polygonals not supported */
- #define PC_POLYGON 1 /* Can do polygons */
- #define PC_RECTANGLE 2 /* Can do rectangles */
- #define PC_WINDPOLYGON 4 /* Can do winding polygons */
- #define PC_TRAPEZOID 4 /* Can do trapezoids */
- #define PC_SCANLINE 8 /* Can do scanlines */
- #define PC_WIDE 16 /* Can do wide borders */
- #define PC_STYLED 32 /* Can do styled borders */
- #define PC_WIDESTYLED 64 /* Can do wide styled borders */
- #define PC_INTERIORS 128 /* Can do interiors */
- #define PC_POLYPOLYGON 256 /* Can do polypolygons */
- #define PC_PATHS 512 /* Can do paths */
-
- // Clipping Capabilities
- #define CP_NONE 0 /* No clipping of output */
- #define CP_RECTANGLE 1 /* Output clipped to rects */
- #define CP_REGION 2 /* obsolete */
-
- // Text Capabilities
- #define TC_OP_CHARACTER 0x00000001 /* Can do OutputPrecision CHARACTER */
- #define TC_OP_STROKE 0x00000002 /* Can do OutputPrecision STROKE */
- #define TC_CP_STROKE 0x00000004 /* Can do ClipPrecision STROKE */
- #define TC_CR_90 0x00000008 /* Can do CharRotAbility 90 */
- #define TC_CR_ANY 0x00000010 /* Can do CharRotAbility ANY */
- #define TC_SF_X_YINDEP 0x00000020 /* Can do ScaleFreedom X_YINDEPENDENT */
- #define TC_SA_DOUBLE 0x00000040 /* Can do ScaleAbility DOUBLE */
- #define TC_SA_INTEGER 0x00000080 /* Can do ScaleAbility INTEGER */
- #define TC_SA_CONTIN 0x00000100 /* Can do ScaleAbility CONTINUOUS */
- #define TC_EA_DOUBLE 0x00000200 /* Can do EmboldenAbility DOUBLE */
- #define TC_IA_ABLE 0x00000400 /* Can do ItalisizeAbility ABLE */
- #define TC_UA_ABLE 0x00000800 /* Can do UnderlineAbility ABLE */
- #define TC_SO_ABLE 0x00001000 /* Can do StrikeOutAbility ABLE */
- #define TC_RA_ABLE 0x00002000 /* Can do RasterFontAble ABLE */
- #define TC_VA_ABLE 0x00004000 /* Can do VectorFontAble ABLE */
- #define TC_RESERVED 0x00008000
- #define TC_SCROLLBLT 0x00010000 /* Don't do text scroll with blt */
-
- #endif // NOGDICAPMASKS
-
- // Raster Capabilities
- #define RC_NONE
- #define RC_BITBLT 1 /* Can do standard BLT. */
- #define RC_BANDING 2 /* Device requires banding support */
- #define RC_SCALING 4 /* Device requires scaling support */
- #define RC_BITMAP64 8 /* Device can support >64K bitmap */
- #define RC_GDI20_OUTPUT 0x0010 /* has 2.0 output calls */
- #define RC_GDI20_STATE 0x0020
- #define RC_SAVEBITMAP 0x0040
- #define RC_DI_BITMAP 0x0080 /* supports DIB to memory */
- #define RC_PALETTE 0x0100 /* supports a palette */
- #define RC_DIBTODEV 0x0200 /* supports DIBitsToDevice */
- #define RC_BIGFONT 0x0400 /* supports >64K fonts */
- #define RC_STRETCHBLT 0x0800 /* supports StretchBlt */
- #define RC_FLOODFILL 0x1000 /* supports FloodFill */
- #define RC_STRETCHDIB 0x2000 /* supports StretchDIBits */
- #define RC_OP_DX_OUTPUT 0x4000
- #define RC_DEVBITS 0x8000
-
-
- // DIB color table identifiers
-
- #define DIB_RGB_COLORS 0 /* color table in RGBs */
- #define DIB_PAL_COLORS 1 /* color table in palette indices */
-
- // constants for Get/SetSystemPaletteUse()
-
- #define SYSPAL_ERROR 0
- #define SYSPAL_STATIC 1
- #define SYSPAL_NOSTATIC 2
-
- // constants for CreateDIBitmap
- #define CBM_INIT 0x04 /* initialize bitmap */
-
- // ExtFloodFill style flags
- #define FLOODFILLBORDER 0
- #define FLOODFILLSURFACE 1
-
- // size of a device name string
- #define CCHDEVICENAME 32
-
- // size of a form name string
- #define CCHFORMNAME 32
-
- // field selection bits
- #define DM_ORIENTATION 0x00000001
- #define DM_PAPERSIZE 0x00000002
- #define DM_PAPERLENGTH 0x00000004
- #define DM_PAPERWIDTH 0x00000008
- #define DM_SCALE 0x00000010
- #define DM_COPIES 0x00000100
- #define DM_DEFAULTSOURCE 0x00000200
- #define DM_PRINTQUALITY 0x00000400
- #define DM_COLOR 0x00000800
- #define DM_DUPLEX 0x00001000
- #define DM_YRESOLUTION 0x00002000
- #define DM_TTOPTION 0x00004000
- #define DM_COLLATE 0x00008000
- #define DM_FORMNAME 0x00010000
- #define DM_LOGPIXELS 0x00020000
- #define DM_BITSPERPEL 0x00040000
- #define DM_PELSWIDTH 0x00080000
- #define DM_PELSHEIGHT 0x00100000
- #define DM_DISPLAYFLAGS 0x00200000
- #define DM_DISPLAYFREQUENCY 0x00400000
- #define DM_ICMMETHOD 0x00800000
- #define DM_ICMINTENT 0x01000000
- #define DM_MEDIATYPE 0x02000000
- #define DM_DITHERTYPE 0x04000000
-
- // orientation selections
- #define DMORIENT_PORTRAIT 1
- #define DMORIENT_LANDSCAPE 2
-
- // paper selections
- #define DMPAPER_FIRST DMPAPER_LETTER
- #define DMPAPER_LETTER 1 /* Letter 8 1/2 x 11 in */
- #define DMPAPER_LETTERSMALL 2 /* Letter Small 8 1/2 x 11 in */
- #define DMPAPER_TABLOID 3 /* Tabloid 11 x 17 in */
- #define DMPAPER_LEDGER 4 /* Ledger 17 x 11 in */
- #define DMPAPER_LEGAL 5 /* Legal 8 1/2 x 14 in */
- #define DMPAPER_STATEMENT 6 /* Statement 5 1/2 x 8 1/2 in */
- #define DMPAPER_EXECUTIVE 7 /* Executive 7 1/4 x 10 1/2 in */
- #define DMPAPER_A3 8 /* A3 297 x 420 mm */
- #define DMPAPER_A4 9 /* A4 210 x 297 mm */
- #define DMPAPER_A4SMALL 10 /* A4 Small 210 x 297 mm */
- #define DMPAPER_A5 11 /* A5 148 x 210 mm */
- #define DMPAPER_B4 12 /* B4 (JIS) 250 x 354 */
- #define DMPAPER_B5 13 /* B5 (JIS) 182 x 257 mm */
- #define DMPAPER_FOLIO 14 /* Folio 8 1/2 x 13 in */
- #define DMPAPER_QUARTO 15 /* Quarto 215 x 275 mm */
- #define DMPAPER_10X14 16 /* 10x14 in */
- #define DMPAPER_11X17 17 /* 11x17 in */
- #define DMPAPER_NOTE 18 /* Note 8 1/2 x 11 in */
- #define DMPAPER_ENV_9 19 /* Envelope #9 3 7/8 x 8 7/8 */
- #define DMPAPER_ENV_10 20 /* Envelope #10 4 1/8 x 9 1/2 */
- #define DMPAPER_ENV_11 21 /* Envelope #11 4 1/2 x 10 3/8 */
- #define DMPAPER_ENV_12 22 /* Envelope #12 4 \276 x 11 */
- #define DMPAPER_ENV_14 23 /* Envelope #14 5 x 11 1/2 */
- #define DMPAPER_CSHEET 24 /* C size sheet */
- #define DMPAPER_DSHEET 25 /* D size sheet */
- #define DMPAPER_ESHEET 26 /* E size sheet */
- #define DMPAPER_ENV_DL 27 /* Envelope DL 110 x 220mm */
- #define DMPAPER_ENV_C5 28 /* Envelope C5 162 x 229 mm */
- #define DMPAPER_ENV_C3 29 /* Envelope C3 324 x 458 mm */
- #define DMPAPER_ENV_C4 30 /* Envelope C4 229 x 324 mm */
- #define DMPAPER_ENV_C6 31 /* Envelope C6 114 x 162 mm */
- #define DMPAPER_ENV_C65 32 /* Envelope C65 114 x 229 mm */
- #define DMPAPER_ENV_B4 33 /* Envelope B4 250 x 353 mm */
- #define DMPAPER_ENV_B5 34 /* Envelope B5 176 x 250 mm */
- #define DMPAPER_ENV_B6 35 /* Envelope B6 176 x 125 mm */
- #define DMPAPER_ENV_ITALY 36 /* Envelope 110 x 230 mm */
- #define DMPAPER_ENV_MONARCH 37 /* Envelope Monarch 3.875 x 7.5 in */
- #define DMPAPER_ENV_PERSONAL 38 /* 6 3/4 Envelope 3 5/8 x 6 1/2 in */
- #define DMPAPER_FANFOLD_US 39 /* US Std Fanfold 14 7/8 x 11 in */
- #define DMPAPER_FANFOLD_STD_GERMAN 40 /* German Std Fanfold 8 1/2 x 12 in */
- #define DMPAPER_FANFOLD_LGL_GERMAN 41 /* German Legal Fanfold 8 1/2 x 13 in */
- #define DMPAPER_ISO_B4 42 /* B4 (ISO) 250 x 353 mm */
- #define DMPAPER_JAPANESE_POSTCARD 43 /* Japanese Postcard 100 x 148 mm */
- #define DMPAPER_9X11 44 /* 9 x 11 in */
- #define DMPAPER_10X11 45 /* 10 x 11 in */
- #define DMPAPER_15X11 46 /* 15 x 11 in */
- #define DMPAPER_ENV_INVITE 47 /* Envelope Invite 220 x 220 mm */
- #define DMPAPER_RESERVED_48 48 /* RESERVED--DO NOT USE */
- #define DMPAPER_RESERVED_49 49 /* RESERVED--DO NOT USE */
- #define DMPAPER_LETTER_EXTRA 50 /* Letter Extra 9 \275 x 12 in */
- #define DMPAPER_LEGAL_EXTRA 51 /* Legal Extra 9 \275 x 15 in */
- #define DMPAPER_TABLOID_EXTRA 52 /* Tabloid Extra 11.69 x 18 in */
- #define DMPAPER_A4_EXTRA 53 /* A4 Extra 9.27 x 12.69 in */
- #define DMPAPER_LETTER_TRANSVERSE 54 /* Letter Transverse 8 \275 x 11 in */
- #define DMPAPER_A4_TRANSVERSE 55 /* A4 Transverse 210 x 297 mm */
- #define DMPAPER_LETTER_EXTRA_TRANSVERSE 56 /* Letter Extra Transverse 9\275 x 12 in */
- #define DMPAPER_A_PLUS 57 /* SuperA/SuperA/A4 227 x 356 mm */
- #define DMPAPER_B_PLUS 58 /* SuperB/SuperB/A3 305 x 487 mm */
- #define DMPAPER_LETTER_PLUS 59 /* Letter Plus 8.5 x 12.69 in */
- #define DMPAPER_A4_PLUS 60 /* A4 Plus 210 x 330 mm */
- #define DMPAPER_A5_TRANSVERSE 61 /* A5 Transverse 148 x 210 mm */
- #define DMPAPER_B5_TRANSVERSE 62 /* B5 (JIS) Transverse 182 x 257 mm */
- #define DMPAPER_A3_EXTRA 63 /* A3 Extra 322 x 445 mm */
- #define DMPAPER_A5_EXTRA 64 /* A5 Extra 174 x 235 mm */
- #define DMPAPER_B5_EXTRA 65 /* B5 (ISO) Extra 201 x 276 mm */
- #define DMPAPER_A2 66 /* A2 420 x 594 mm */
- #define DMPAPER_A3_TRANSVERSE 67 /* A3 Transverse 297 x 420 mm */
- #define DMPAPER_A3_EXTRA_TRANSVERSE 68 /* A3 Extra Transverse 322 x 445 mm */
- #define DMPAPER_LAST DMPAPER_A3_EXTRA_TRANSVERSE
-
- #define DMPAPER_USER 256
-
- /* bin selections */
- #define DMBIN_FIRST DMBIN_UPPER
- #define DMBIN_UPPER 1
- #define DMBIN_ONLYONE 1
- #define DMBIN_LOWER 2
- #define DMBIN_MIDDLE 3
- #define DMBIN_MANUAL 4
- #define DMBIN_ENVELOPE 5
- #define DMBIN_ENVMANUAL 6
- #define DMBIN_AUTO 7
- #define DMBIN_TRACTOR 8
- #define DMBIN_SMALLFMT 9
- #define DMBIN_LARGEFMT 10
- #define DMBIN_LARGECAPACITY 11
- #define DMBIN_CASSETTE 14
- #define DMBIN_FORMSOURCE 15
- #define DMBIN_LAST DMBIN_FORMSOURCE
-
- #define DMBIN_USER 256 /* device specific bins start here */
-
- // print qualities
- #define DMRES_DRAFT (-1)
- #define DMRES_LOW (-2)
- #define DMRES_MEDIUM (-3)
- #define DMRES_HIGH (-4)
-
- // color enable/disable for color printers
- #define DMCOLOR_MONOCHROME 1
- #define DMCOLOR_COLOR 2
-
- // duplex enable
- #define DMDUP_SIMPLEX 1
- #define DMDUP_VERTICAL 2
- #define DMDUP_HORIZONTAL 3
-
- // TrueType options
- #define DMTT_BITMAP 1 /* print TT fonts as graphics */
- #define DMTT_DOWNLOAD 2 /* download TT fonts as soft fonts */
- #define DMTT_SUBDEV 3 /* substitute device fonts for TT fonts */
- #define DMTT_DOWNLOAD_OUTLINE 4 /* download TT fonts as outline soft fonts */
-
- // Collation selections
- #define DMCOLLATE_FALSE 0
- #define DMCOLLATE_TRUE 1
-
- // DEVMODE dmDisplayFlags flags
-
- #define DM_GRAYSCALE 0x00000001
- #define DM_INTERLACED 0x00000002
-
- // ICM methods
- #define DMICMMETHOD_NONE 1 /* ICM disabled */
- #define DMICMMETHOD_SYSTEM 2 /* ICM handled by system */
- #define DMICMMETHOD_DRIVER 3 /* ICM handled by driver */
- #define DMICMMETHOD_DEVICE 4 /* ICM handled by device */
-
- #define DMICMMETHOD_USER 256 /* Device-specific methods start here */
-
- // ICM Intents
- #define DMICM_SATURATE 1 /* Maximize color saturation */
- #define DMICM_CONTRAST 2 /* Maximize color contrast */
- #define DMICM_COLORMETRIC 3 /* Use specific color metric */
-
- #define DMICM_USER 256 /* Device-specific intents start here */
-
- // Media types
-
- #define DMMEDIA_STANDARD 1 /* Standard paper */
- #define DMMEDIA_TRANSPARENCY 2 /* Transparency */
- #define DMMEDIA_GLOSSY 3 /* Glossy paper */
-
- #define DMMEDIA_USER 256 /* Device-specific media start here */
-
- // Dither types
- #define DMDITHER_NONE 1 /* No dithering */
- #define DMDITHER_COARSE 2 /* Dither with a coarse brush */
- #define DMDITHER_FINE 3 /* Dither with a fine brush */
- #define DMDITHER_LINEART 4 /* LineArt dithering */
-
- #define DMDITHER_ERRORDIFFUSION 5 /* LineArt dithering */
- #define DMDITHER_RESERVED6 6 /* LineArt dithering */
- #define DMDITHER_RESERVED7 7 /* LineArt dithering */
- #define DMDITHER_RESERVED8 8 /* LineArt dithering */
- #define DMDITHER_RESERVED9 9 /* LineArt dithering */
-
- #define DMDITHER_GRAYSCALE 10 /* Device does grayscaling */
-
- #define DMDITHER_USER 256 /* Device-specific dithers start here */
-
- // GetRegionData/ExtCreateRegion
-
- #define RDH_RECTANGLES 1
-
- // GetGlyphOutline constants
-
- #define GGO_METRICS 0
- #define GGO_BITMAP 1
- #define GGO_NATIVE 2
-
- #define GGO_GRAY2_BITMAP 4
- #define GGO_GRAY4_BITMAP 5
- #define GGO_GRAY8_BITMAP 6
- #define GGO_GLYPH_INDEX 0x0080
-
- #define TT_POLYGON_TYPE 24
-
- #define TT_PRIM_LINE 1
- #define TT_PRIM_QSPLINE 2
-
- #define GCP_DBCS 0x0001
- #define GCP_REORDER 0x0002
- #define GCP_USEKERNING 0x0008
- #define GCP_GLYPHSHAPE 0x0010
- #define GCP_LIGATE 0x0020
- // #define GCP_GLYPHINDEXING 0x0080
- #define GCP_DIACRITIC 0x0100
- #define GCP_KASHIDA 0x0400
- #define GCP_ERROR 0x8000
- #define FLI_MASK 0x103B
-
- #define GCP_JUSTIFY 0x00010000
- // #define GCP_NODIACRITICS 0x00020000
- #define FLI_GLYPHS 0x00040000
- #define GCP_CLASSIN 0x00080000
- #define GCP_MAXEXTENT 0x00100000
- #define GCP_JUSTIFYIN 0x00200000
- #define GCP_DISPLAYZWG 0x00400000
- #define GCP_SYMSWAPOFF 0x00800000
- #define GCP_NUMERICOVERRIDE 0x01000000
- #define GCP_NEUTRALOVERRIDE 0x02000000
- #define GCP_NUMERICSLATIN 0x04000000
- #define GCP_NUMERICSLOCAL 0x08000000
-
- #define GCPCLASS_LATIN 1
- #define GCPCLASS_HEBREW 2
- #define GCPCLASS_ARABIC 2
- #define GCPCLASS_NEUTRAL 3
- #define GCPCLASS_LOCALNUMBER 4
- #define GCPCLASS_LATINNUMBER 5
- #define GCPCLASS_LATINNUMERICTERMINATOR 6
- #define GCPCLASS_LATINNUMERICSEPARATOR 7
- #define GCPCLASS_NUMERICSEPARATOR 8
- #define GCPCLASS_PREBOUNDLTR 0x80
- #define GCPCLASS_PREBOUNDRTL 0x40
- #define GCPCLASS_POSTBOUNDLTR 0x20
- #define GCPCLASS_POSTBOUNDRTL 0x10
-
- #define GCPGLYPH_LINKBEFORE 0x8000
- #define GCPGLYPH_LINKAFTER 0x4000
-
-
- // bits defined in wFlags of RASTERIZER_STATUS
- #define TT_AVAILABLE 0x0001
- #define TT_ENABLED 0x0002
-
- // pixel types
- #define PFD_TYPE_RGBA 0
- #define PFD_TYPE_COLORINDEX 1
-
- // layer types
- #define PFD_MAIN_PLANE 0
- #define PFD_OVERLAY_PLANE 1
- #define PFD_UNDERLAY_PLANE (-1)
-
- // PIXELFORMATDESCRIPTOR flags
- #define PFD_DOUBLEBUFFER 0x00000001
- #define PFD_STEREO 0x00000002
- #define PFD_DRAW_TO_WINDOW 0x00000004
- #define PFD_DRAW_TO_BITMAP 0x00000008
- #define PFD_SUPPORT_GDI 0x00000010
- #define PFD_SUPPORT_OPENGL 0x00000020
- #define PFD_GENERIC_FORMAT 0x00000040
- #define PFD_NEED_PALETTE 0x00000080
- #define PFD_NEED_SYSTEM_PALETTE 0x00000100
- #define PFD_SWAP_EXCHANGE 0x00000200
- #define PFD_SWAP_COPY 0x00000400
-
- // PIXELFORMATDESCRIPTOR flags for use in ChoosePixelFormat only
- #define PFD_DOUBLEBUFFER_DONTCARE 0x40000000
- #define PFD_STEREO_DONTCARE 0x80000000
-
- // mode selections for the device mode function
- #define DM_UPDATE 1
- #define DM_COPY 2
- #define DM_PROMPT 4
- #define DM_MODIFY 8
-
- #define DM_IN_BUFFER DM_MODIFY
- #define DM_IN_PROMPT DM_PROMPT
- #define DM_OUT_BUFFER DM_COPY
- #define DM_OUT_DEFAULT DM_UPDATE
-
- // device capabilities indices
- #define DC_FIELDS 1
- #define DC_PAPERS 2
- #define DC_PAPERSIZE 3
- #define DC_MINEXTENT 4
- #define DC_MAXEXTENT 5
- #define DC_BINS 6
- #define DC_DUPLEX 7
- #define DC_SIZE 8
- #define DC_EXTRA 9
- #define DC_VERSION 10
- #define DC_DRIVER 11
- #define DC_BINNAMES 12
- #define DC_ENUMRESOLUTIONS 13
- #define DC_FILEDEPENDENCIES 14
- #define DC_TRUETYPE 15
- #define DC_PAPERNAMES 16
- #define DC_ORIENTATION 17
- #define DC_COPIES 18
- #define DC_BINADJUST 19
- #define DC_EMF_COMPLIANT 20
- #define DC_DATATYPE_PRODUCED 21
- #define DC_MANUFACTURER 23
- #define DC_MODEL 24
-
- // bit fields of the return value (DWORD) for DC_TRUETYPE
- #define DCTT_BITMAP 0x0000001
- #define DCTT_DOWNLOAD 0x0000002
- #define DCTT_SUBDEV 0x0000004
- #define DCTT_DOWNLOAD_OUTLINE 0x0000008
-
- // return values for DC_BINADJUST
- #define DCBA_FACEUPNONE 0x0000
- #define DCBA_FACEUPCENTER 0x0001
- #define DCBA_FACEUPLEFT 0x0002
- #define DCBA_FACEUPRIGHT 0x0003
- #define DCBA_FACEDOWNNONE 0x0100
- #define DCBA_FACEDOWNCENTER 0x0101
- #define DCBA_FACEDOWNLEFT 0x0102
- #define DCBA_FACEDOWNRIGHT 0x0103
-
- // Flags value for COLORADJUSTMENT
- #define CA_NEGATIVE 0x0001
- #define CA_LOG_FILTER 0x0002
-
- // IlluminantIndex values
- #define ILLUMINANT_DEVICE_DEFAULT 0
- #define ILLUMINANT_A 1
- #define ILLUMINANT_B 2
- #define ILLUMINANT_C 3
- #define ILLUMINANT_D50 4
- #define ILLUMINANT_D55 5
- #define ILLUMINANT_D65 6
- #define ILLUMINANT_D75 7
- #define ILLUMINANT_F2 8
- #define ILLUMINANT_MAX_INDEX ILLUMINANT_F2
-
- #define ILLUMINANT_TUNGSTEN ILLUMINANT_A
- #define ILLUMINANT_DAYLIGHT ILLUMINANT_C
- #define ILLUMINANT_FLUORESCENT ILLUMINANT_F2
- #define ILLUMINANT_NTSC ILLUMINANT_C
-
- // Min and max for RedGamma, GreenGamma, BlueGamma
- #define RGB_GAMMA_MIN 1344 // was octal 02500
- #define RGB_GAMMA_MAX 65000
-
- // Min and max for ReferenceBlack and ReferenceWhite
- #define REFERENCE_WHITE_MIN 6000
- #define REFERENCE_WHITE_MAX 10000
- #define REFERENCE_BLACK_MIN 0
- #define REFERENCE_BLACK_MAX 4000
-
- // Min and max for Contrast, Brightness, Colorfulness, RedGreenTint
- #define COLOR_ADJ_MIN -100
- #define COLOR_ADJ_MAX 100
-
-
- #define DI_APPBANDING 0x0001
-
- #define FONTMAPPER_MAX 10
-
- #define ICM_OFF 1
- #define ICM_ON 2
- #define ICM_QUERY 3
-
- // Enhanced metafile constants.
-
- #define ENHMETA_SIGNATURE 0x464D4520
-
- // Stock object flag used in the object handle index in the enhanced
- // metafile records.
- // E.g. The object handle index (META_STOCK_OBJECT | BLACK_BRUSH)
- // represents the stock object BLACK_BRUSH.
-
- #define ENHMETA_STOCK_OBJECT 0x80000000
-
- // Enhanced metafile record types.
-
- #define EMR_HEADER 1
- #define EMR_POLYBEZIER 2
- #define EMR_POLYGON 3
- #define EMR_POLYLINE 4
- #define EMR_POLYBEZIERTO 5
- #define EMR_POLYLINETO 6
- #define EMR_POLYPOLYLINE 7
- #define EMR_POLYPOLYGON 8
- #define EMR_SETWINDOWEXTEX 9
- #define EMR_SETWINDOWORGEX 10
- #define EMR_SETVIEWPORTEXTEX 11
- #define EMR_SETVIEWPORTORGEX 12
- #define EMR_SETBRUSHORGEX 13
- #define EMR_EOF 14
- #define EMR_SETPIXELV 15
- #define EMR_SETMAPPERFLAGS 16
- #define EMR_SETMAPMODE 17
- #define EMR_SETBKMODE 18
- #define EMR_SETPOLYFILLMODE 19
- #define EMR_SETROP2 20
- #define EMR_SETSTRETCHBLTMODE 21
- #define EMR_SETTEXTALIGN 22
- #define EMR_SETCOLORADJUSTMENT 23
- #define EMR_SETTEXTCOLOR 24
- #define EMR_SETBKCOLOR 25
- #define EMR_OFFSETCLIPRGN 26
- #define EMR_MOVETOEX 27
- #define EMR_SETMETARGN 28
- #define EMR_EXCLUDECLIPRECT 29
- #define EMR_INTERSECTCLIPRECT 30
- #define EMR_SCALEVIEWPORTEXTEX 31
- #define EMR_SCALEWINDOWEXTEX 32
- #define EMR_SAVEDC 33
- #define EMR_RESTOREDC 34
- #define EMR_SETWORLDTRANSFORM 35
- #define EMR_MODIFYWORLDTRANSFORM 36
- #define EMR_SELECTOBJECT 37
- #define EMR_CREATEPEN 38
- #define EMR_CREATEBRUSHINDIRECT 39
- #define EMR_DELETEOBJECT 40
- #define EMR_ANGLEARC 41
- #define EMR_ELLIPSE 42
- #define EMR_RECTANGLE 43
- #define EMR_ROUNDRECT 44
- #define EMR_ARC 45
- #define EMR_CHORD 46
- #define EMR_PIE 47
- #define EMR_SELECTPALETTE 48
- #define EMR_CREATEPALETTE 49
- #define EMR_SETPALETTEENTRIES 50
- #define EMR_RESIZEPALETTE 51
- #define EMR_REALIZEPALETTE 52
- #define EMR_EXTFLOODFILL 53
- #define EMR_LINETO 54
- #define EMR_ARCTO 55
- #define EMR_POLYDRAW 56
- #define EMR_SETARCDIRECTION 57
- #define EMR_SETMITERLIMIT 58
- #define EMR_BEGINPATH 59
- #define EMR_ENDPATH 60
- #define EMR_CLOSEFIGURE 61
- #define EMR_FILLPATH 62
- #define EMR_STROKEANDFILLPATH 63
- #define EMR_STROKEPATH 64
- #define EMR_FLATTENPATH 65
- #define EMR_WIDENPATH 66
- #define EMR_SELECTCLIPPATH 67
- #define EMR_ABORTPATH 68
-
- #define EMR_GDICOMMENT 70
- #define EMR_FILLRGN 71
- #define EMR_FRAMERGN 72
- #define EMR_INVERTRGN 73
- #define EMR_PAINTRGN 74
- #define EMR_EXTSELECTCLIPRGN 75
- #define EMR_BITBLT 76
- #define EMR_STRETCHBLT 77
- #define EMR_MASKBLT 78
- #define EMR_PLGBLT 79
- #define EMR_SETDIBITSTODEVICE 80
- #define EMR_STRETCHDIBITS 81
- #define EMR_EXTCREATEFONTINDIRECTW 82
- #define EMR_EXTTEXTOUTA 83
- #define EMR_EXTTEXTOUTW 84
- #define EMR_POLYBEZIER16 85
- #define EMR_POLYGON16 86
- #define EMR_POLYLINE16 87
- #define EMR_POLYBEZIERTO16 88
- #define EMR_POLYLINETO16 89
- #define EMR_POLYPOLYLINE16 90
- #define EMR_POLYPOLYGON16 91
- #define EMR_POLYDRAW16 92
- #define EMR_CREATEMONOBRUSH 93
- #define EMR_CREATEDIBPATTERNBRUSHPT 94
- #define EMR_EXTCREATEPEN 95
- #define EMR_POLYTEXTOUTA 96
- #define EMR_POLYTEXTOUTW 97
-
- #define EMR_SETICMMODE 98
- #define EMR_CREATECOLORSPACE 99
- #define EMR_SETCOLORSPACE 100
- #define EMR_DELETECOLORSPACE 101
-
- #define EMR_MIN 1
- #define EMR_MAX 101
-
- #define GDICOMMENT_IDENTIFIER 0x43494447
- #define GDICOMMENT_WINDOWS_METAFILE 0x80000001
- #define GDICOMMENT_BEGINGROUP 0x00000002
- #define GDICOMMENT_ENDGROUP 0x00000003
- #define GDICOMMENT_MULTIFORMATS 0x40000004
- #define EPS_SIGNATURE 0x46535045
-
- #define WGL_FONT_LINES 0
- #define WGL_FONT_POLYGONS 1
-
- #endif // WINGDI_H
-